home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Macintosh Debugging / Blat / Blat.make < prev    next >
Encoding:
Text File  |  1992-08-07  |  596 b   |  25 lines  |  [TEXT/MPS ]

  1. #   File:       Blat.make
  2. #
  3. #    Note that the link order is important. If you link something else first,
  4. #    it will barf in the BuildDcmd.
  5. #    This is set up for MPW 3.2, since the libraries moved.
  6.  
  7. Blat.p.o ƒ Blat.make Blat.p
  8.      Pascal  Blat.p
  9. Blat.a.o ƒ Blat.make Blat.a
  10.      Asm  Blat.a
  11. dcmdGlue.a.o    ƒ    dcmdGlue.a
  12.     asm    -o dcmdGlue.a.o    dcmdGlue.a
  13.  
  14. SOURCES = Blat.a Blat.p
  15. OBJECTS = dcmdGlue.a.o Blat.a.o Blat.p.o
  16.  
  17. Blat ƒ Blat.make {OBJECTS}
  18.     Link -sg Main=PASLIB,%A5INIT  ∂
  19.         {OBJECTS} ∂
  20.         "{Libraries}"Runtime.o ∂
  21.         "{Libraries}"Interface.o ∂
  22.         "{PLibraries}"PasLib.o ∂
  23.         -o Blat
  24.     BuildDcmd Blat 45243
  25.